1 /***
2 * NoneCollector
3 *
4 * This class is responsible for gathering and
5 * interpreting results.
6 */
7
8 package junit.quilt.cover.none;
9
10 import org.apache.commons.graph.*;
11
12 import junit.quilt.framework.*;
13
14 public class NoneCollector
15 extends QuiltCollectorImpl
16 {
17 private static String capabilities[] =
18 { };
19
20 public NoneCollector( ) {
21 super( capabilities );
22 }
23
24 public void reset() {
25 }
26 }
This page was automatically generated by Maven